home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutor.exe
/
ANSWERS
/
CH02_4.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-15
|
351b
|
15 lines
main()
{
int index;
index = 13;
printf("The value of the index is %d\n", index);
index = 27;
printf("The value of the index is %d\n", index);
index = 10;
printf("The value of the index is %d\n", index);
printf("Index is %d\n it still is %d\n it is %d",
index, index, index);
}